home *** CD-ROM | disk | FTP | other *** search
/ Champak 109 / Vol 109.iso / games / rush_hou.swf / scripts / %3Cdefault package%3E / FSelectableListSymbol.as < prev    next >
Encoding:
Text File  |  2008-11-12  |  737 b   |  35 lines

  1. function FSelectableListClass()
  2. {
  3.    this.init();
  4. }
  5. function(index, label, data)
  6. {
  7.    if(index < 0 || !this.enable)
  8.    {
  9.       return undefined;
  10.    }
  11.    "label";
  12.    label;
  13.    "data";
  14.    data;
  15.    2;
  16. }
  17. FSelectableListClass.prototype = new FUIComponentClass();
  18. FSelectableListClass.prototype.init = function()
  19. {
  20.    var _loc1_ = this;
  21.    super.init();
  22.    _loc1_.enable = true;
  23.    _loc1_.selected = new Array();
  24.    _loc1_.topDisplayed = _loc1_.numDisplayed = 0;
  25.    _loc1_.lastSelected = 0;
  26.    _loc1_.tabChildren = false;
  27.    if(_loc1_._name != undefined)
  28.    {
  29.       _loc1_.dataProvider = new DataProviderClass();
  30.       _loc1_.dataProvider.addView(_loc1_);
  31.    }
  32. };
  33. FSelectableListClass.prototype;
  34. "addItemAt";
  35.